projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dbcac3
)
(BCOPY_SHORT): Fix typo `unsigined'.
author
Karl Heuer
<kwzh@gnu.org>
Tue, 10 Aug 1999 17:30:22 +0000
(17:30 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Tue, 10 Aug 1999 17:30:22 +0000
(17:30 +0000)
src/charset.h
patch
|
blob
|
history
diff --git
a/src/charset.h
b/src/charset.h
index 2cc0f0ce0171e854f595b61879f78466072fbdd0..1b2ac59bec5c17ef8c92daeddc85c9eddd7c7515 100644
(file)
--- a/
src/charset.h
+++ b/
src/charset.h
@@
-835,7
+835,7
@@
extern Lisp_Object Vauto_fill_chars;
#define BCOPY_SHORT(from, to, len) \
do { \
int i = len; \
- unsig
ined char *from_p = from, *to_p = to;
\
+ unsig
ned char *from_p = from, *to_p = to;
\
while (i--) *from_p++ = *to_p++; \
} while (0)